home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / Clinic / AutomationServer2.dpr < prev    next >
Encoding:
Text File  |  1999-03-12  |  400 b   |  18 lines

  1. program AutomationServer2;
  2.  
  3. uses
  4.   Forms,
  5.   AutomationServer2MainFormU in 'AutomationServer2MainFormU.pas' {FrmServer},
  6.   AutomationServer2_TLB in 'AutomationServer2_TLB.pas',
  7.   AutomationServer2ClassU in 'AutomationServer2ClassU.pas' {Clock: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TFrmServer, FrmServer);
  16.   Application.Run;
  17. end.
  18.